/*
Galdor S.A de C.V
Proyecto: Página Web Galdor
Fecha: 28-Junio-2025
Archivo: acerca.css 
*/
:root {
    --primary-green: #2ecc71;
    --dark-green: #27ae60;
    --light-green: #a3e4b7;
    --white: #ffffff;
    --off-white: #f9f9f9;
    --gray: #eeeeee;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--off-white);
    color: #333;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: none;
    padding: 20px 0;
    border-bottom: 1px solid rgba(46, 204, 113, 0.1);
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.navbar-brand {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
}

.nav-link {
    color: #555;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    margin: 0 0.2rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link:hover:after {
    width: 70%;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    padding: 120px 0 80px;
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
    justify-content: center;
}

.breadcrumb-item, .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* About Content */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-image img {
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-content h3 {
    color: var(--dark-green);
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.about-content h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-green);
}

.about-content p {
    margin-bottom: 25px;
    line-height: 1.8;
}

.team-section {
    background-color: var(--off-white);
    padding: 80px 0;
}

.team-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
    position: relative;
    overflow: hidden;
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background-color: rgba(46, 204, 113, 0.9);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    display: inline-block;
    color: var(--white);
    margin: 0 8px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--white);
    color: var(--primary-green);
}

.team-info {
    padding: 25px 20px;
    text-align: center;
}

.team-info h4 {
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.team-info p {
    color: #777;
    margin-bottom: 0;
}

.section-title {
    position: relative;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--primary-green);
    text-align: center;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-green);
    margin: 15px auto 0;
    border-radius: 2px;
}

.values-list {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.value-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--light-green);
    color: var(--primary-green);
    font-size: 24px;
    border-radius: 10px;
    margin-right: 20px;
    flex-shrink: 0;
}

.value-content {
    flex-grow: 1;
}

.value-content h4 {
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
}
.collapse navbar-collapse justify-content-end" id="navbarNav">